@@ -511,30 +511,30 @@ jobs:
511511 id : cache-libmicrohttpd
512512 uses : actions/cache@v4
513513 with :
514- path : libmicrohttpd-0.9.77
515- key : ${{ matrix.os }}-${{ matrix.c-compiler }}-libmicrohttpd-0.9.77 -pre-built-v2
514+ path : libmicrohttpd-1.0.3
515+ key : ${{ matrix.os }}-${{ matrix.c-compiler }}-libmicrohttpd-1.0.3 -pre-built-v2
516516 if : ${{ matrix.os-type != 'windows' && matrix.build-type != 'no-dauth' && matrix.compiler-family != 'arm-cross' }}
517517
518518 - name : Build libmicrohttpd dependency (if not cached)
519519 run : |
520- curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-0.9.77. tar.gz -o libmicrohttpd-0.9.77 .tar.gz ;
521- tar -xzf libmicrohttpd-0.9.77 .tar.gz ;
522- cd libmicrohttpd-0.9.77 ;
520+ curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-1.0.3. tar.gz -o libmicrohttpd-1.0.3 .tar.gz ;
521+ tar -xzf libmicrohttpd-1.0.3 .tar.gz ;
522+ cd libmicrohttpd-1.0.3 ;
523523 ./configure --disable-examples ;
524524 make ;
525525 if : ${{ matrix.os-type != 'windows' && matrix.build-type != 'no-dauth' && matrix.compiler-family != 'arm-cross' && steps.cache-libmicrohttpd.outputs.cache-hit != 'true' }}
526526
527527 - name : Build libmicrohttpd without digest auth (no-dauth test)
528528 run : |
529- curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-0.9.77. tar.gz -o libmicrohttpd-0.9.77 .tar.gz ;
530- tar -xzf libmicrohttpd-0.9.77 .tar.gz ;
531- cd libmicrohttpd-0.9.77 ;
529+ curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-1.0.3. tar.gz -o libmicrohttpd-1.0.3 .tar.gz ;
530+ tar -xzf libmicrohttpd-1.0.3 .tar.gz ;
531+ cd libmicrohttpd-1.0.3 ;
532532 ./configure --disable-examples --disable-dauth ;
533533 make ;
534534 if : ${{ matrix.build-type == 'no-dauth' }}
535535
536536 - name : Install libmicrohttpd
537- run : cd libmicrohttpd-0.9.77 ; sudo make install ;
537+ run : cd libmicrohttpd-1.0.3 ; sudo make install ;
538538 if : ${{ matrix.os-type != 'windows' && matrix.compiler-family != 'arm-cross' }}
539539
540540 - name : Verify digest auth is disabled (no-dauth test)
@@ -550,9 +550,9 @@ jobs:
550550 - name : Build and install libmicrohttpd (Windows)
551551 if : ${{ matrix.os-type == 'windows' }}
552552 run : |
553- curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-0.9.77. tar.gz -o libmicrohttpd-0.9.77 .tar.gz
554- tar -xzf libmicrohttpd-0.9.77 .tar.gz
555- cd libmicrohttpd-0.9.77
553+ curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-1.0.3. tar.gz -o libmicrohttpd-1.0.3 .tar.gz
554+ tar -xzf libmicrohttpd-1.0.3 .tar.gz
555+ cd libmicrohttpd-1.0.3
556556 ./configure --disable-examples --enable-poll=no
557557 make
558558 make install
@@ -561,16 +561,16 @@ jobs:
561561 id : cache-libmicrohttpd-arm
562562 uses : actions/cache@v4
563563 with :
564- path : libmicrohttpd-0.9.77 -${{ matrix.build-type }}
565- key : ${{ matrix.os }}-${{ matrix.build-type }}-libmicrohttpd-0.9.77 -cross-compiled
564+ path : libmicrohttpd-1.0.3 -${{ matrix.build-type }}
565+ key : ${{ matrix.os }}-${{ matrix.build-type }}-libmicrohttpd-1.0.3 -cross-compiled
566566 if : ${{ matrix.compiler-family == 'arm-cross' }}
567567
568568 - name : Cross-compile libmicrohttpd for ARM
569569 run : |
570- curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-0.9.77. tar.gz -o libmicrohttpd-0.9.77 .tar.gz
571- tar -xzf libmicrohttpd-0.9.77 .tar.gz
572- mv libmicrohttpd-0.9.77 libmicrohttpd-0.9.77 -${{ matrix.build-type }}
573- cd libmicrohttpd-0.9.77 -${{ matrix.build-type }}
570+ curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-1.0.3. tar.gz -o libmicrohttpd-1.0.3 .tar.gz
571+ tar -xzf libmicrohttpd-1.0.3 .tar.gz
572+ mv libmicrohttpd-1.0.3 libmicrohttpd-1.0.3 -${{ matrix.build-type }}
573+ cd libmicrohttpd-1.0.3 -${{ matrix.build-type }}
574574 mkdir -p ${{ github.workspace }}/arm-sysroot
575575 if [ "${{ matrix.build-type }}" = "arm32" ]; then
576576 ./configure --host=arm-linux-gnueabihf --prefix=${{ github.workspace }}/arm-sysroot --disable-examples --disable-doc
@@ -583,7 +583,7 @@ jobs:
583583
584584 - name : Install cross-compiled libmicrohttpd from cache
585585 run : |
586- cd libmicrohttpd-0.9.77 -${{ matrix.build-type }}
586+ cd libmicrohttpd-1.0.3 -${{ matrix.build-type }}
587587 mkdir -p ${{ github.workspace }}/arm-sysroot
588588 make install
589589 if : ${{ matrix.compiler-family == 'arm-cross' && steps.cache-libmicrohttpd-arm.outputs.cache-hit == 'true' }}
0 commit comments