forked from htcondor/htcondor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure_redhat
executable file
·30 lines (29 loc) · 1.1 KB
/
configure_redhat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
echo "-------------------------------------------------------------------"
echo "* NOTE: Attempting to configure a Red Hat-esk build"
echo "* which builds against system libs and selectively "
echo "* enables and disables portions of condor"
echo "* If you are unsure, you should run \"cmake .\""
echo "*"
echo "* add -D_DEBUG:BOOL=FALSE to get non-optimized code for debugging"
echo "* Another option would be to run ccmake or cmake-gui"
echo "* and select the options you care to build with"
echo "-------------------------------------------------------------------"
cmake \
-DNO_PHONE_HOME:BOOL=TRUE \
-DHAVE_BACKFILL:BOOL=FALSE \
-DHAVE_BOINC:BOOL=FALSE \
-DWITH_GSOAP:BOOL=FALSE \
-DWITH_POSTGRESQL:BOOL=FALSE \
-DHAVE_KBDD:BOOL=TRUE \
-DHAVE_HIBERNATION:BOOL=TRUE \
-DWANT_LEASE_MANAGER:BOOL=FALSE \
-DWANT_CONTRIB:BOOL=ON \
-DWANT_MAN_PAGES:BOOL=TRUE \
-DWANT_FULL_DEPLOYMENT:BOOL=FALSE \
-DWANT_GLEXEC:BOOL=FALSE \
-D_VERBOSE:BOOL=TRUE \
-DBUILDID:STRING=RH_development \
-DWITH_GLOBUS:BOOL=FALSE \
-DWITH_VOMS:BOOL=FALSE \
-DCMAKE_INSTALL_PREFIX:PATH=${PWD}/release_dir "$@"