Changeset 182 in MondoRescue for branches/2.05/mondo/mondo


Ignore:
Timestamp:
Dec 13, 2005, 2:17:16 AM (18 years ago)
Author:
bcornec
Message:

disable x11 build by default
g_mondo_home is now computed at compile time with a define

Location:
branches/2.05/mondo/mondo/common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.05/mondo/mondo/common/Makefile.am

    r30 r182  
    33##
    44
     5AM_CPPFLAGS = -DMONDO_LIB=\"$(pkglibdir)\"
    56## Headers
     7
    68noinst_HEADERS       = libmondo-archive.h libmondo-devices.h \
    79                       libmondo-filelist.h libmondo-files.h libmondo-fork.h \
     
    2729                       libmondo-mountlist.c libmondo-raid.c \
    2830                       libmondo-stream.c libmondo-string.c libmondo-tools.c \
    29                        libmondo-verify.c 
     31                       libmondo-verify.c
    3032libmondo_la_LDFLAGS  = -version-info 2:3:0 -shrext .so
    3133libmondo_la_LIBADD   = @LIBS@
  • branches/2.05/mondo/mondo/common/libmondo-tools.c

    r165 r182  
    352352{
    353353    assert(home_sz != NULL);
    354     strcpy(home_sz,
    355            call_program_and_get_last_line_of_output
    356            ("find /usr/lib/ /usr/local/ /usr/share/ /usr/local/share/ /opt/ /ramdisk/usr/share/ -type d -maxdepth 2 -name include -prune -o -type d -maxdepth 2 -path '*/mondo/restore-scripts' -printf '%h\n' 2> /dev/null"));
    357 
    358     if (home_sz[0] == '\0') {
    359         strcpy(home_sz,
    360                call_program_and_get_last_line_of_output
    361                ("find /usr -type d -path '*/mondo/restore-scripts' -follow -maxdepth 3 -printf '%h\n' 2> /dev/null"));
    362     }
    363     if (home_sz[0] == '\0') {
    364         return (1);
    365     } else {
    366         return (0);
    367     }
     354    strcpy(home_sz, MONDO_LIB);
     355    return (0);
    368356}
    369357
Note: See TracChangeset for help on using the changeset viewer.