Ticket #57874: patch-rename-macosx-macro.diff

File patch-rename-macosx-macro.diff, 3.2 KB (added by l2dy (Zero King), 6 years ago)
  • src/gethelp.c

    diff --git src/gethelp.c src/gethelp.c
    index 3d70340..dd2abf7 100644
    gethelp(char *helptxt, char *topic, char *bkarg, char *prefix, FILE *outf) 
    126126                                        *p = 0;
    127127                                        fputs(t, outf);
    128128                                        t = &p[7];
    129                                         if (macosx()) {
     129                                        if (is_macosx()) {
    130130                                                /* all the same size for roff
    131131                                                 *     #BKMOD#
    132132                                                 */
  • src/libc/unix.h

    diff --git src/libc/unix.h src/libc/unix.h
    index bfbd1f2..6ffd7cc 100644
     
    7474
    7575
    7676#ifdef  __APPLE__
    77 #define macosx()        1
     77#define is_macosx()     1
    7878#else
    79 #define macosx()        0
     79#define is_macosx()     0
    8080#endif
    8181
    8282/* tcp/tcp.c */
  • src/libc/win32.h

    diff --git src/libc/win32.h src/libc/win32.h
    index b2522a8..7bec191 100644
     
    7575#define mkpipe(p, size) pipe(p, size)
    7676
    7777#define win32()         1
    78 #define macosx()        0
     78#define is_macosx()     0
    7979#define NOPROC
    8080#define ELOOP           40
    8181
  • src/port/gui.c

    diff --git src/port/gui.c src/port/gui.c
    index f1a7bcf..391c3a1 100644
    gui_useDisplay(void) 
    2626        char    *p;
    2727
    2828        if ((p = getenv("BK_NO_GUI_PROMPT")) && *p) return (0);
    29         if (win32() || macosx()) return ((p = getenv("BK_GUI")) && *p);
     29        if (win32() || is_macosx()) return ((p = getenv("BK_GUI")) && *p);
    3030        return (getenv("DISPLAY") && (p = getenv("BK_GUI")) && *p);
    3131}
    3232
  • src/port/uninstall.c

    diff --git src/port/uninstall.c src/port/uninstall.c
    index 6a26c2b..50592af 100644
    uninstall(char *path, int upgrade) 
    351351
    352352        dfd = efopen("BK_UNINSTALL_LOG");
    353353
    354         if (macosx() && exists(MAC_PHFILE)) {
     354        if (is_macosx() && exists(MAC_PHFILE)) {
    355355                ph = backtick("cat " MAC_PHFILE, 0);
    356356                /*
    357357                 * Ensure that
    uninstall(char *path, int upgrade) 
    435435                free(cmd);
    436436        }
    437437
    438         if (macosx()) {
     438        if (is_macosx()) {
    439439                /* figure out if we're in a bundle or not */
    440440                char    *bundle = fullname(bin, 0);
    441441
    uninstall(char *path, int upgrade) 
    496496                }
    497497        }
    498498        /* On OS X, bk 7.0.1 and later use path_helper(8). Remove that crumb. */
    499         if (macosx() && removeph) {
     499        if (is_macosx() && removeph) {
    500500                unlink(MAC_PHFILE);
    501501        }
    502502        rc = 0;
  • src/upgrade.c

    diff --git src/upgrade.c src/upgrade.c
    index 37d05e3..b8afb70 100644
    upgrade_main(int ac, char **av) 
    131131        } else {
    132132                platform = bk_platform;
    133133        }
    134         if (macosx()) {
     134        if (is_macosx()) {
    135135                /* figure out if we're in a bundle or not */
    136136                bundle = fullname(bin, 0);
    137137                if (p = strstr(bundle, "BitKeeper.app")) {
    upgrade_main(int ac, char **av) 
    148148                notice("upgrade-nomsys", 0, "-e");
    149149                goto out;
    150150        }
    151         if (!macosx() && install && noperms(bin)) {
     151        if (!is_macosx() && install && noperms(bin)) {
    152152                notice("upgrade-badperms", bin, "-e");
    153153                goto out;
    154154        }
    upgrade_main(int ac, char **av) 
    216216                        unless (version) version = strdup(data[3]);
    217217                        if (streq(data[5], platform)) {
    218218                                /* found this platform */
    219                                 if (macosx()) {
     219                                if (is_macosx()) {
    220220                                        /* if we hit a .bin, skip it. we
    221221                                         * want the .pkg */
    222222                                        p = strrchr(data[1], '.');
    proceed: 
    347347                goto out;
    348348        }
    349349#else
    350         if (macosx()) {
     350        if (is_macosx()) {
    351351                sprintf(buf, "/usr/bin/open -W %s", data[1]);
    352352        } else {
    353353                sprintf(buf, "./%s -u", data[1]);