configure.ac (221de5ad) configure.ac (b871de36)
1dnl * *************************************************************
2dnl *
3dnl * Licensed to the Apache Software Foundation (ASF) under one
4dnl * or more contributor license agreements. See the NOTICE file
5dnl * distributed with this work for additional information
6dnl * regarding copyright ownership. The ASF licenses this file
7dnl * to you under the Apache License, Version 2.0 (the
8dnl * "License"); you may not use this file except in compliance

--- 5415 unchanged lines hidden (view full) ---

5424 fi
5425 if test -z "$NSIS_PATH"; then
5426 AC_MSG_WARN([NSIS not found, no self contained installer will be build.])
5427 echo "NSIS not found, no self contained installer will be build." >> warn
5428 else
5429 NSIS_PATH=`cygpath -d "$NSIS_PATH"`
5430 NSIS_PATH=`cygpath -u "$NSIS_PATH"`
5431 AC_MSG_RESULT([found ($NSIS_PATH)])
1dnl * *************************************************************
2dnl *
3dnl * Licensed to the Apache Software Foundation (ASF) under one
4dnl * or more contributor license agreements. See the NOTICE file
5dnl * distributed with this work for additional information
6dnl * regarding copyright ownership. The ASF licenses this file
7dnl * to you under the Apache License, Version 2.0 (the
8dnl * "License"); you may not use this file except in compliance

--- 5415 unchanged lines hidden (view full) ---

5424 fi
5425 if test -z "$NSIS_PATH"; then
5426 AC_MSG_WARN([NSIS not found, no self contained installer will be build.])
5427 echo "NSIS not found, no self contained installer will be build." >> warn
5428 else
5429 NSIS_PATH=`cygpath -d "$NSIS_PATH"`
5430 NSIS_PATH=`cygpath -u "$NSIS_PATH"`
5431 AC_MSG_RESULT([found ($NSIS_PATH)])
5432 AC_MSG_CHECKING([whether NSIS version is >= 3.*])
5433 nsis_version_string=`"$NSIS_PATH/makensis.exe" /VERSION | $SED -e s/^v//i`
5434 nsis_version_major=`echo $nsis_version_string | cut -d. -f1`
5435 nsis_version_minor=`echo $nsis_version_string | cut -d. -f2`
5436 if test "$nsis_version_major" -ge "3"; then
5437 AC_MSG_RESULT([found NSIS $nsis_version_major.$nsis_version_minor >= 3.*])
5438 AC_MSG_CHECKING([whether NSIS was compiled with Unicode support])
5439 if echo `"$NSIS_PATH/makensis.exe" /HDRINFO` | $EGREP "\bNSIS_UNICODE_MAKENSIS\b" 2>&1 >/dev/null; then
5440 AC_MSG_RESULT([NSIS version compiled with Unicode support.])
5441 else
5442 NSIS_PATH=""
5443 AC_MSG_WARN([NSIS version compiled without Unicode support, no self contained installer will be build.])
5444 fi
5445 else
5446 NSIS_PATH=""
5447 AC_MSG_WARN([NSIS version found is < 3.*, no self contained installer will be build.])
5448 fi
5432 fi
5433fi
5434AC_SUBST(NSIS_PATH)
5435
5436dnl ***************************************
5437dnl testing bison and flex exist
5438dnl ***************************************
5439AC_PATH_PROG(BISON, bison)

--- 1837 unchanged lines hidden ---
5449 fi
5450fi
5451AC_SUBST(NSIS_PATH)
5452
5453dnl ***************************************
5454dnl testing bison and flex exist
5455dnl ***************************************
5456AC_PATH_PROG(BISON, bison)

--- 1837 unchanged lines hidden ---