IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 22, 2026, 10:00:30 AM (3 months ago)
Author:
eugene
Message:

update configure.ac to install apache cgi code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-pstamp-20260421/DataStoreServer/configure.ac

    r16673 r42992  
    22
    33AC_INIT([DataStoreServer], [1.0.0], [ipp-support@ifa.hawaii.edu])
     4
     5# this checks for a working C compiler, but is only needed is
     6# we build *.c files, which we do not in DataStoreServer
     7# AC_PROG_CC
     8
    49AC_CONFIG_SRCDIR([scripts])
    510
     
    914AC_PROG_INSTALL
    1015
     16AC_ARG_WITH([cgidir],
     17  [AS_HELP_STRING([--with-cgidir=DIR],
     18                  [directory for CGI programs])],
     19  [cgidir="$withval"],
     20  [cgidir=""])
     21
     22AC_ARG_WITH([dsroot],
     23  [AS_HELP_STRING([--with-dsroot=DIR],
     24                  [directory for web data files])],
     25  [dsroot="$withval"],
     26  [dsroot=""])
     27
     28AC_SUBST([cgidir])
     29AC_SUBST([dsroot])
     30
    1131AC_CONFIG_FILES([
    1232  Makefile
     33  web/cgi/Makefile
    1334  scripts/Makefile
    1435])
Note: See TracChangeset for help on using the changeset viewer.