diff options
| author | Dan Nicolaescu | 2010-04-22 13:32:43 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-04-22 13:32:43 -0700 |
| commit | cd32c34824f63369497c413660a21f06ec3f18cf (patch) | |
| tree | 8e96920dc0048f753ede8a4e8c05bc49676dbea9 | |
| parent | a0d0b56337892f81aae659d7a14cc91986f0b7fc (diff) | |
| download | emacs-cd32c34824f63369497c413660a21f06ec3f18cf.tar.gz emacs-cd32c34824f63369497c413660a21f06ec3f18cf.zip | |
Regenerate configure.
| -rwxr-xr-x | configure | 11 |
1 files changed, 5 insertions, 6 deletions
| @@ -5477,7 +5477,7 @@ configure___ ld_switch_machine=LD_SWITCH_MACHINE | |||
| 5477 | 5477 | ||
| 5478 | /* Get the CFLAGS for tests in configure. */ | 5478 | /* Get the CFLAGS for tests in configure. */ |
| 5479 | #ifdef __GNUC__ | 5479 | #ifdef __GNUC__ |
| 5480 | configure___ CFLAGS=C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}' | 5480 | configure___ CFLAGS=-g C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}' |
| 5481 | #else | 5481 | #else |
| 5482 | configure___ CFLAGS='${SPECIFIED_CFLAGS}' | 5482 | configure___ CFLAGS='${SPECIFIED_CFLAGS}' |
| 5483 | #endif | 5483 | #endif |
| @@ -5486,7 +5486,7 @@ configure___ CFLAGS='${SPECIFIED_CFLAGS}' | |||
| 5486 | 5486 | ||
| 5487 | /* Get the CFLAGS for real compilation. */ | 5487 | /* Get the CFLAGS for real compilation. */ |
| 5488 | #ifdef __GNUC__ | 5488 | #ifdef __GNUC__ |
| 5489 | configure___ REAL_CFLAGS=C_OPTIMIZE_SWITCH C_WARNINGS_SWITCH ${PROFILING_CFLAGS} '${SPECIFIED_CFLAGS}' | 5489 | configure___ REAL_CFLAGS=-g C_OPTIMIZE_SWITCH C_WARNINGS_SWITCH ${PROFILING_CFLAGS} '${SPECIFIED_CFLAGS}' |
| 5490 | #else | 5490 | #else |
| 5491 | configure___ REAL_CFLAGS='${SPECIFIED_CFLAGS}' | 5491 | configure___ REAL_CFLAGS='${SPECIFIED_CFLAGS}' |
| 5492 | #endif | 5492 | #endif |
| @@ -7510,7 +7510,6 @@ int | |||
| 7510 | main () | 7510 | main () |
| 7511 | { | 7511 | { |
| 7512 | char *data, *data2, *data3; | 7512 | char *data, *data2, *data3; |
| 7513 | const char *cdata2; | ||
| 7514 | int i, pagesize; | 7513 | int i, pagesize; |
| 7515 | int fd, fd2; | 7514 | int fd, fd2; |
| 7516 | 7515 | ||
| @@ -7535,10 +7534,10 @@ main () | |||
| 7535 | fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); | 7534 | fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); |
| 7536 | if (fd2 < 0) | 7535 | if (fd2 < 0) |
| 7537 | return 4; | 7536 | return 4; |
| 7538 | cdata2 = ""; | 7537 | data2 = ""; |
| 7539 | if (write (fd2, cdata2, 1) != 1) | 7538 | if (write (fd2, data2, 1) != 1) |
| 7540 | return 5; | 7539 | return 5; |
| 7541 | data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); | 7540 | data2 = mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); |
| 7542 | if (data2 == MAP_FAILED) | 7541 | if (data2 == MAP_FAILED) |
| 7543 | return 6; | 7542 | return 6; |
| 7544 | for (i = 0; i < pagesize; ++i) | 7543 | for (i = 0; i < pagesize; ++i) |