Changeset 21534 for main


Ignore:
Timestamp:
2010-01-19T16:15:18+13:00 (14 years ago)
Author:
mdewsnip
Message:

Added --disable-lucene option to configure scripts, and make Lucene enabled by default. ENABLE_LUCENE is defined for use in the C++ code and Makefiles.

Location:
main/trunk/gs2-core
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/Makefile.in

    r21517 r21534  
    117117ECHO_N = @ECHO_N@
    118118ECHO_T = @ECHO_T@
     119ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     120ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    119121EXEEXT = @EXEEXT@
    120122INSTALL_DATA = @INSTALL_DATA@
  • main/trunk/gs2-core/common-src/Makefile.in

    r21532 r21534  
    117117ECHO_N = @ECHO_N@
    118118ECHO_T = @ECHO_T@
     119ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     120ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    119121EXEEXT = @EXEEXT@
    120122INSTALL_DATA = @INSTALL_DATA@
  • main/trunk/gs2-core/common-src/config.h.in

    r21465 r21534  
    11/* config.h.in.  Generated from configure.ac by autoheader.  */
     2
     3/* Lucene support */
     4#undef ENABLE_LUCENE
    25
    36/* Define to the address where bug reports for this package should be sent. */
  • main/trunk/gs2-core/common-src/configure

    r21533 r21534  
    274274PACKAGE_BUGREPORT='[email protected]'
    275275
    276 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB build build_cpu build_vendor build_os host host_cpu host_vendor host_os COMPAT32BITFLAGS USE_SQLITE_TRUE USE_SQLITE_FALSE LIBOBJS LTLIBOBJS'
     276ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB build build_cpu build_vendor build_os host host_cpu host_vendor host_os COMPAT32BITFLAGS ENABLE_LUCENE_TRUE ENABLE_LUCENE_FALSE USE_SQLITE_TRUE USE_SQLITE_FALSE LIBOBJS LTLIBOBJS'
    277277ac_subst_files=''
    278278
     
    814814  --disable-dependency-tracking  speeds up one-time build
    815815  --enable-dependency-tracking   do not reject slow dependency extractors
     816  --disable-lucene        Disable Lucene support
    816817  --disable-sqlite        Disable SQLite support
    817818
     
    26682669
    26692670
     2671# Option: Lucene support (enabled by default)
     2672# Check whether --enable-lucene or --disable-lucene was given.
     2673if test "${enable_lucene+set}" = set; then
     2674  enableval="$enable_lucene"
     2675
     2676else
     2677  enable_lucene=yes
     2678fi;
     2679if test "x$enable_lucene" != xno; then
     2680
     2681cat >>confdefs.h <<\_ACEOF
     2682#define ENABLE_LUCENE 1
     2683_ACEOF
     2684
     2685fi
     2686
     2687
     2688if test "x$enable_lucene" != xno; then
     2689  ENABLE_LUCENE_TRUE=
     2690  ENABLE_LUCENE_FALSE='#'
     2691else
     2692  ENABLE_LUCENE_TRUE='#'
     2693  ENABLE_LUCENE_FALSE=
     2694fi
     2695
     2696
    26702697# Option: SQLite support (enabled by default)
    26712698# Check whether --enable-sqlite or --disable-sqlite was given.
     
    28102837Usually this means the macro was only invoked conditionally." >&5
    28112838echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
     2839Usually this means the macro was only invoked conditionally." >&2;}
     2840   { (exit 1); exit 1; }; }
     2841fi
     2842if test -z "${ENABLE_LUCENE_TRUE}" && test -z "${ENABLE_LUCENE_FALSE}"; then
     2843  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_LUCENE\" was never defined.
     2844Usually this means the macro was only invoked conditionally." >&5
     2845echo "$as_me: error: conditional \"ENABLE_LUCENE\" was never defined.
    28122846Usually this means the macro was only invoked conditionally." >&2;}
    28132847   { (exit 1); exit 1; }; }
     
    34023436s,@host_os@,$host_os,;t t
    34033437s,@COMPAT32BITFLAGS@,$COMPAT32BITFLAGS,;t t
     3438s,@ENABLE_LUCENE_TRUE@,$ENABLE_LUCENE_TRUE,;t t
     3439s,@ENABLE_LUCENE_FALSE@,$ENABLE_LUCENE_FALSE,;t t
    34043440s,@USE_SQLITE_TRUE@,$USE_SQLITE_TRUE,;t t
    34053441s,@USE_SQLITE_FALSE@,$USE_SQLITE_FALSE,;t t
  • main/trunk/gs2-core/common-src/configure.ac

    r21532 r21534  
    5353AC_SUBST(COMPAT32BITFLAGS)
    5454
     55# Option: Lucene support (enabled by default)
     56AC_ARG_ENABLE([lucene], [AS_HELP_STRING([--disable-lucene], [Disable Lucene support])], [], [enable_lucene=yes])
     57if test "x$enable_lucene" != xno; then
     58  AC_DEFINE(ENABLE_LUCENE, 1, [Lucene support])
     59fi
     60AM_CONDITIONAL(ENABLE_LUCENE, test "x$enable_lucene" != xno)
     61
    5562# Option: SQLite support (enabled by default)
    5663AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes])
  • main/trunk/gs2-core/common-src/src/lib/Makefile.in

    r21462 r21534  
    132132ECHO_N = @ECHO_N@
    133133ECHO_T = @ECHO_T@
     134ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     135ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    134136EXEEXT = @EXEEXT@
    135137INSTALL_DATA = @INSTALL_DATA@
  • main/trunk/gs2-core/config.h.in

    r21468 r21534  
    11/* config.h.in.  Generated from configure.ac by autoheader.  */
     2
     3/* Lucene support */
     4#undef ENABLE_LUCENE
    25
    36/* Define to the address where bug reports for this package should be sent. */
  • main/trunk/gs2-core/configure

    r21519 r21534  
    276276ac_subdirs_all="$ac_subdirs_all common-src"
    277277ac_subdirs_all="$ac_subdirs_all runtime-src"
    278 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB build build_cpu build_vendor build_os host host_cpu host_vendor host_os COMPAT32BITFLAGS USE_SQLITE_TRUE USE_SQLITE_FALSE subdirs LIBOBJS LTLIBOBJS'
     278ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB build build_cpu build_vendor build_os host host_cpu host_vendor host_os COMPAT32BITFLAGS ENABLE_LUCENE_TRUE ENABLE_LUCENE_FALSE USE_SQLITE_TRUE USE_SQLITE_FALSE subdirs LIBOBJS LTLIBOBJS'
    279279ac_subst_files=''
    280280
     
    816816  --disable-dependency-tracking  speeds up one-time build
    817817  --enable-dependency-tracking   do not reject slow dependency extractors
     818  --disable-lucene        Disable Lucene support
    818819  --disable-sqlite        Disable SQLite support
    819820
     
    26702671
    26712672
     2673# Option: Lucene support (enabled by default)
     2674# Check whether --enable-lucene or --disable-lucene was given.
     2675if test "${enable_lucene+set}" = set; then
     2676  enableval="$enable_lucene"
     2677
     2678else
     2679  enable_lucene=yes
     2680fi;
     2681if test "x$enable_lucene" != xno; then
     2682
     2683cat >>confdefs.h <<\_ACEOF
     2684#define ENABLE_LUCENE 1
     2685_ACEOF
     2686
     2687fi
     2688
     2689
     2690if test "x$enable_lucene" != xno; then
     2691  ENABLE_LUCENE_TRUE=
     2692  ENABLE_LUCENE_FALSE='#'
     2693else
     2694  ENABLE_LUCENE_TRUE='#'
     2695  ENABLE_LUCENE_FALSE=
     2696fi
     2697
     2698
    26722699# Option: SQLite support (enabled by default)
    26732700# Check whether --enable-sqlite or --disable-sqlite was given.
     
    28162843Usually this means the macro was only invoked conditionally." >&5
    28172844echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
     2845Usually this means the macro was only invoked conditionally." >&2;}
     2846   { (exit 1); exit 1; }; }
     2847fi
     2848if test -z "${ENABLE_LUCENE_TRUE}" && test -z "${ENABLE_LUCENE_FALSE}"; then
     2849  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_LUCENE\" was never defined.
     2850Usually this means the macro was only invoked conditionally." >&5
     2851echo "$as_me: error: conditional \"ENABLE_LUCENE\" was never defined.
    28182852Usually this means the macro was only invoked conditionally." >&2;}
    28192853   { (exit 1); exit 1; }; }
     
    34073441s,@host_os@,$host_os,;t t
    34083442s,@COMPAT32BITFLAGS@,$COMPAT32BITFLAGS,;t t
     3443s,@ENABLE_LUCENE_TRUE@,$ENABLE_LUCENE_TRUE,;t t
     3444s,@ENABLE_LUCENE_FALSE@,$ENABLE_LUCENE_FALSE,;t t
    34093445s,@USE_SQLITE_TRUE@,$USE_SQLITE_TRUE,;t t
    34103446s,@USE_SQLITE_FALSE@,$USE_SQLITE_FALSE,;t t
  • main/trunk/gs2-core/configure.ac

    r21519 r21534  
    5353AC_SUBST(COMPAT32BITFLAGS)
    5454
     55# Option: Lucene support (enabled by default)
     56AC_ARG_ENABLE([lucene], [AS_HELP_STRING([--disable-lucene], [Disable Lucene support])], [], [enable_lucene=yes])
     57if test "x$enable_lucene" != xno; then
     58  AC_DEFINE(ENABLE_LUCENE, 1, [Lucene support])
     59fi
     60AM_CONDITIONAL(ENABLE_LUCENE, test "x$enable_lucene" != xno)
     61
    5562# Option: SQLite support (enabled by default)
    5663AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes])
  • main/trunk/gs2-core/runtime-src/Makefile.in

    r21505 r21534  
    120120ECHO_N = @ECHO_N@
    121121ECHO_T = @ECHO_T@
     122ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     123ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    122124EXEEXT = @EXEEXT@
    123125INSTALL_DATA = @INSTALL_DATA@
  • main/trunk/gs2-core/runtime-src/config.h.in

    r21494 r21534  
    11/* config.h.in.  Generated from configure.ac by autoheader.  */
     2
     3/* Lucene support */
     4#undef ENABLE_LUCENE
    25
    36/* Define to 1 if you have the `crypt' library (-lcrypt). */
  • main/trunk/gs2-core/runtime-src/configure

    r21519 r21534  
    274274PACKAGE_BUGREPORT='[email protected]'
    275275
    276 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB build build_cpu build_vendor build_os host host_cpu host_vendor host_os COMPAT32BITFLAGS USE_SQLITE_TRUE USE_SQLITE_FALSE LIBOBJS LTLIBOBJS'
     276ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB build build_cpu build_vendor build_os host host_cpu host_vendor host_os COMPAT32BITFLAGS ENABLE_LUCENE_TRUE ENABLE_LUCENE_FALSE USE_SQLITE_TRUE USE_SQLITE_FALSE LIBOBJS LTLIBOBJS'
    277277ac_subst_files=''
    278278
     
    822822  --disable-dependency-tracking  speeds up one-time build
    823823  --enable-dependency-tracking   do not reject slow dependency extractors
     824  --disable-lucene        Disable Lucene support
    824825  --disable-sqlite        Disable SQLite support
    825826
     
    35883589
    35893590
     3591# Option: Lucene support (enabled by default)
     3592# Check whether --enable-lucene or --disable-lucene was given.
     3593if test "${enable_lucene+set}" = set; then
     3594  enableval="$enable_lucene"
     3595
     3596else
     3597  enable_lucene=yes
     3598fi;
     3599if test "x$enable_lucene" != xno; then
     3600
     3601cat >>confdefs.h <<\_ACEOF
     3602#define ENABLE_LUCENE 1
     3603_ACEOF
     3604
     3605fi
     3606
     3607
     3608if test "x$enable_lucene" != xno; then
     3609  ENABLE_LUCENE_TRUE=
     3610  ENABLE_LUCENE_FALSE='#'
     3611else
     3612  ENABLE_LUCENE_TRUE='#'
     3613  ENABLE_LUCENE_FALSE=
     3614fi
     3615
     3616
    35903617# Option: SQLite support (enabled by default)
    35913618# Check whether --enable-sqlite or --disable-sqlite was given.
     
    37253752Usually this means the macro was only invoked conditionally." >&5
    37263753echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
     3754Usually this means the macro was only invoked conditionally." >&2;}
     3755   { (exit 1); exit 1; }; }
     3756fi
     3757if test -z "${ENABLE_LUCENE_TRUE}" && test -z "${ENABLE_LUCENE_FALSE}"; then
     3758  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_LUCENE\" was never defined.
     3759Usually this means the macro was only invoked conditionally." >&5
     3760echo "$as_me: error: conditional \"ENABLE_LUCENE\" was never defined.
    37273761Usually this means the macro was only invoked conditionally." >&2;}
    37283762   { (exit 1); exit 1; }; }
     
    43264360s,@host_os@,$host_os,;t t
    43274361s,@COMPAT32BITFLAGS@,$COMPAT32BITFLAGS,;t t
     4362s,@ENABLE_LUCENE_TRUE@,$ENABLE_LUCENE_TRUE,;t t
     4363s,@ENABLE_LUCENE_FALSE@,$ENABLE_LUCENE_FALSE,;t t
    43284364s,@USE_SQLITE_TRUE@,$USE_SQLITE_TRUE,;t t
    43294365s,@USE_SQLITE_FALSE@,$USE_SQLITE_FALSE,;t t
  • main/trunk/gs2-core/runtime-src/configure.ac

    r21519 r21534  
    5656AC_SUBST(COMPAT32BITFLAGS)
    5757
     58# Option: Lucene support (enabled by default)
     59AC_ARG_ENABLE([lucene], [AS_HELP_STRING([--disable-lucene], [Disable Lucene support])], [], [enable_lucene=yes])
     60if test "x$enable_lucene" != xno; then
     61  AC_DEFINE(ENABLE_LUCENE, 1, [Lucene support])
     62fi
     63AM_CONDITIONAL(ENABLE_LUCENE, test "x$enable_lucene" != xno)
     64
    5865# Option: SQLite support (enabled by default)
    5966AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes])
  • main/trunk/gs2-core/runtime-src/src/colservr/Makefile.in

    r21494 r21534  
    136136ECHO_N = @ECHO_N@
    137137ECHO_T = @ECHO_T@
     138ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     139ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    138140EXEEXT = @EXEEXT@
    139141INSTALL_DATA = @INSTALL_DATA@
  • main/trunk/gs2-core/runtime-src/src/oaiservr/Makefile.in

    r21502 r21534  
    142142ECHO_N = @ECHO_N@
    143143ECHO_T = @ECHO_T@
     144ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     145ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    144146EXEEXT = @EXEEXT@
    145147INSTALL_DATA = @INSTALL_DATA@
  • main/trunk/gs2-core/runtime-src/src/protocol/Makefile.in

    r21494 r21534  
    116116ECHO_N = @ECHO_N@
    117117ECHO_T = @ECHO_T@
     118ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     119ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    118120EXEEXT = @EXEEXT@
    119121INSTALL_DATA = @INSTALL_DATA@
  • main/trunk/gs2-core/runtime-src/src/recpt/Makefile.in

    r21491 r21534  
    161161ECHO_N = @ECHO_N@
    162162ECHO_T = @ECHO_T@
     163ENABLE_LUCENE_FALSE = @ENABLE_LUCENE_FALSE@
     164ENABLE_LUCENE_TRUE = @ENABLE_LUCENE_TRUE@
    163165EXEEXT = @EXEEXT@
    164166INSTALL_DATA = @INSTALL_DATA@
Note: See TracChangeset for help on using the changeset viewer.