aboutsummaryrefslogtreecommitdiffstats
path: root/macros
diff options
context:
space:
mode:
Diffstat (limited to 'macros')
-rw-r--r--macros/ChangeLog6
-rw-r--r--macros/gnome-ghttp-check.m47
2 files changed, 10 insertions, 3 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 74dfc3cca3..572ba694eb 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,9 @@
+1999-10-21 Jacob Berkman <jberkman@andrew.cmu.edu>
+
+ * gnome-ghttp-check.m4: use a temp value until we know that
+ ghttp exists. This will hopefully fix building on Solaris
+ machines
+
1999-09-26 Jody Goldberg <jgoldberg@home.com>
* compiler-flags.m4 : Remove -Wpointer-arith. It generates large
diff --git a/macros/gnome-ghttp-check.m4 b/macros/gnome-ghttp-check.m4
index 1fc85783f9..7a82afc147 100644
--- a/macros/gnome-ghttp-check.m4
+++ b/macros/gnome-ghttp-check.m4
@@ -1,14 +1,15 @@
AC_DEFUN([GNOME_GHTTP_CHECK],[
AC_REQUIRE([GNOME_INIT_HOOK])
+ GHTTP_LIB_TEMP=
GHTTP_LIB=
AC_CHECK_FUNC(connect,,[
AC_CHECK_LIB(socket,connect,
- GHTTP_LIB="-lsocket $GHTTP_LIB",,$GHTTP_LIB)])
+ GHTTP_LIB_TEMP="-lsocket $GHTTP_LIB",,$GHTTP_LIB)])
AC_CHECK_FUNC(gethostbyname,,[
AC_CHECK_LIB(nsl,gethostbyname,
- GHTTP_LIB="-lnsl $GHTTP_LIB",,$GHTTP_LIB)])
+ GHTTP_LIB_TEMP="-lnsl $GHTTP_LIB_TEMP",,$GHTTP_LIB_TEMP)])
AC_CHECK_LIB(ghttp, ghttp_request_new,
- GHTTP_LIB="-lghttp $GHTTP_LIB",,-L$gnome_prefix $GHTTP_LIB)
+ GHTTP_LIB="-lghttp $GHTTP_LIB_TEMP",,-L$gnome_prefix $GHTTP_LIB_TEMP)
AC_SUBST(GHTTP_LIB)
AC_PROVIDE([GNOME_GHTTP_CHECK])
])
ass='commitgraph'>| * | Add fixes affecting the public interface to the CHANGELOGsFabio Berger2018-11-122-0/+45 | * | Use correctly formatted signature so that it rejects with the expected reason...Fabio Berger2018-11-121-1/+2 | * | Remove unnecessary conversion to BigNumberFabio Berger2018-11-121-2/+2 | * | Use rejectedWithFabio Berger2018-11-121-2/+2 | * | Use RevertReason when possibleFabio Berger2018-11-121-1/+1 | * | rename paramFabio Berger2018-11-121-2/+2 | * | address linter errorsFabio Berger2018-11-111-2/+0 | * | Move signature validation into OrderValidationUtils.validateOrderFillableOrTh...Fabio Berger2018-11-103-15/+16 | * | Merge branch 'development' into fixOrderValidationFabio Berger2018-11-10131-393/+1151 | |\ \ | * | | Revert comment changeFabio Berger2018-11-101-1/+1 | * | | Keep more helpful error messages, and stop swallowing errors when returning c...Fabio Berger2018-11-101-59/+72 | * | | Merge branch 'development' into fixOrderValidationFabio Berger2018-11-0983-632/+1428 | |\ \ \ | * | | | Remove unused validateFillOrKill methodFabio Berger2018-11-091-30/+1 | * | | | Fix validateOrderFillableOrThrowAsync method so it also checks order signatur...Fabio Berger2018-11-0912-30/+94 * | | | | Merge pull request #1246 from 0xProject/bug/web3-wrapper/eth-call-nullFabio B2018-11-121-3/+0 |\ \ \ \ \ | * | | | | bug(web3-wrapper): throws when contract returns nullJacob Evans2018-11-121-3/+0 * | | | | | Merge pull request #1238 from 0xProject/fix/website/code-splittingBrandon Millman2018-11-1224-32/+34 |\ \ \ \ \ \ | |/ / / / / |/| | | | | | * | | | | fix(website): fix code splittingBrandon Millman2018-11-1224-32/+34 |/ / / / / * | | | | Merge pull request #1241 from 0xProject/feature/contracts/changelogsAmir Bandeali2018-11-122-1/+116 |\ \ \ \ \ | * | | | | Add CHANGELOG comment to READMEAmir Bandeali2018-11-121-1/+1 | * | | | | Add CHANGELOG.jsonAmir Bandeali2018-11-121-0/+115 |/ / / / / * | | | | Merge pull request #1239 from 0xProject/feature/instant/privacy-modeBrandon Millman2018-11-106-16/+11 |\ \ \ \ \ | * | | | | feat(instant): handle privacy mode in walletsBrandon Millman2018-11-106-16/+11 |/ / / / / * | | | | Merge pull request #1237 from 0xProject/feature/instant/buy-quote-heartbeatSteve Klebanoff2018-11-107-13/+106 |\ \ \ \ \ | * | | | | lintingSteve Klebanoff2018-11-102-1/+2 | * | | | | Don't start heartbeat if no accountSteve Klebanoff2018-11-101-6/+8 | * | | | | Lodash noopSteve Klebanoff2018-11-101-1/+1 | * | | | | Using built in intervalUtils instead of rolling ownSteve Klebanoff2018-11-101-20/+5 | * | | | | Update account more frequentlySteve Klebanoff2018-11-101-1/+1 | * | | | | Linting and renaming variablesSteve Klebanoff2018-11-105-21/+23 | * | | | | Use interface like named parameters hereSteve Klebanoff2018-11-102-3/+4 | * | | | | Emulate named parameters with interfaceSteve Klebanoff2018-11-103-7/+17 | * | | | | Make sure we only update price when they are not in the middle of an orderSteve Klebanoff2018-11-101-2/+3 | * | | | | Use existing functions instead of writing our ownSteve Klebanoff2018-11-107-94/+28 | * | | | | Merge branch 'development' into feature/instant/buy-quote-heartbeatSteve Klebanoff2018-11-10143-603/+1514 | |\ \ \ \ \ | | | |_|/ / | | |/| | | | * | | | | Variable name cleanupSteve Klebanoff2018-11-091-9/+9 | * | | | | Remove unneeded Promise.resolveSteve Klebanoff2018-11-091-1/+0 | * | | | | Remove old TODOSteve Klebanoff2018-11-091-1/+0 | * | | | | move files around and renameSteve Klebanoff2018-11-093-24/+20 | * | | | | wip: BuyQuote heartbeatSteve Klebanoff2018-11-094-5/+45 | * | | | | Make heartbeat more genericSteve Klebanoff2018-11-092-23/+29 | * | | | | wip: abstract out updating buy quoteSteve Klebanoff2018-11-092-39/+59 | * | | | | lintingSteve Klebanoff2018-11-091-0/+1 | * | | | | feat(instant): Heartbeat for updating account infoSteve Klebanoff2018-11-094-3/+62 * | | | | | feat(instant): Dismissible overlay error messagesSteve Klebanoff2018-11-106-12/+50 | |/ / / / |/| | | | * | | | | Publishethereum-types@1.1.2contracts@2.1.51@0x/website@0.0.56@0x/web3-wrapper@3.1.1@0x/utils@2.0.4@0x/typescript-typings@3.0.4@0x/types@1.2.1@0x/tslint-config@1.0.10@0x/testnet-faucets@1.0.53@0x/subproviders@2.1.1@0x/sra-spec@1.0.8@0x/sol-resolver@1.0.16@0x/sol-doc@1.0.4@0x/sol-cov@2.1.9@0x/sol-compiler@1.1.9@0x/react-shared@1.0.18@0x/react-docs@1.0.15@0x/order-watcher@2.2.1@0x/order-utils@2.0.1@0x/monorepo-scripts@1.0.13@0x/migrations@2.0.1@0x/metacoin@0.0.25@0x/json-schemas@2.0.1@0x/instant@0.0.4@0x/fill-scenarios@1.0.9@0x/dev-utils@1.0.14@0x/dev-tools-pages@0.0.3@0x/contract-wrappers@3.0.1@0x/contract-artifacts@1.1.0@0x/contract-addresses@1.1.0@0x/connect@3.0.3@0x/base-contract@3.0.3@0x/asset-buyer@2.2.0@0x/assert@1.0.15@0x/abi-gen@1.0.15@0x/abi-gen-wrappers@1.0.20x.js@2.0.1Jacob Evans2018-11-0937-283/+283 * | | | | Updated CHANGELOGSJacob Evans2018-11-0961-14/+395 * | | | | Merge pull request #1232 from 0xProject/feature/instant/account-state-changeBrandon Millman2018-11-0911-42/+148 |\ \ \ \ \ | * | | | | fix(instant): fix bug where we potentially fetch balance for the wrong accountBrandon Millman2018-11-094-9/+18 | * | | | | Merge branch 'development' into feature/instant/account-state-changeBrandon Millman2018-11-0935-291/+504 | |\ \ \ \ \ | | |/ / / / | |/| | / / | | | |/ / | | |/| | | * | | | chore(instant): fix lint errorsBrandon Millman2018-11-081-1/+1 | * | | | feat(instant): fetch balance at startupBrandon Millman2018-11-087-20/+53 | * | | | feat(instant): fetch account address at startup and drive account state changesBrandon Millman2018-11-089-25/+88 * | | | | Merge pull request #1236 from 0xProject/fix/subproviders/lock-ledger-4.24.0Jacob Evans2018-11-092-6/+16 |\ \ \ \ \ | * | | | | fix: Lock Ledger hw-transport to 4.24.0Jacob Evans2018-11-092-6/+16 | | |/ / / | |/| | | * | | | | Merge pull request #1230 from 0xProject/feature/instant/dropdown-uiFrancesco Agosti2018-11-0924-53/+314 |\ \ \ \ \ | |/ / / / |/| | | | | * | | | fix: wrong prop names usedfragosti2018-11-091-2/+2 | * | | | chore: PR feedbackfragosti2018-11-091-9/+9 | * | | | fix: broken features because of mergefragosti2018-11-093-1/+5 | * | | | Merge branch 'development' of https://github.com/0xProject/0x-monorepo into f...fragosti2018-11-0914-102/+226 | |\ \ \ \ | |/ / / / |/| | | | * | | | | [instant] Viewport specific errors (#1228)Steve Klebanoff2018-11-098-49/+118 * | | | | Merge pull request #977 from 0xProject/feature/utils/prettybignumRemco Bloemen2018-11-091-0/+23 |\ \ \ \ \ | * | | | | Added more commentsRemco Bloemen2018-11-091-0/+5 | * | | | | Merge remote-tracking branch 'origin/development' into feature/utils/prettybi...Remco Bloemen2018-11-0928-247/+367 | |\ \ \ \ \ | |/ / / / / |/| | | | | * | | | | | Include wholeNumberSchema in sra-spec schemasFabio Berger2018-11-091-0/+2 * | | | | | Merge pull request #1231 from 0xProject/fix/instant/default-amount-quoteBrandon Millman2018-11-094-53/+83 |\ \ \ \ \ \ | * | | | | | chore(instant): fix linterBrandon Millman2018-11-091-0/+1 | * | | | | | fix(instant): update buy quote at start up in the case of default amountBrandon Millman2018-11-084-53/+82 | | |_|/ / / | |/| | | | | | * | | | Merge remote-tracking branch 'origin/development' into feature/utils/prettybi...Remco Bloemen2018-11-09