Commit Graph

25 Commits

Author SHA1 Message Date
Till Schneidereit
5739bcd7fa Bug 726573: Change .hgignore and .gitignore to ignore Eclipse IDE project files in subdirectories, too. r=khuey 2012-02-13 14:36:16 -08:00
Jonathan Watt
6706d020f5 Bug 718442 - Have .hgignore and .gitignore ignore the project files Eclipse IDE. r=khuey.
--HG--
extra : rebase_source : d02b562c1764de4e8b2acf92f74f5e1ca1782b25
2012-01-16 21:31:44 +00:00
Kyle Huey
457ad7e77a Bug 715113: Update Snappy to r56. r=bent 2012-01-05 11:26:14 -05:00
Richard Newman
65ce71b277 Bug 686354 - hgignore addition for Vim swap files. r=ted 2011-09-12 17:25:24 -07:00
Justin Lebar
da3ad81eec Bug 589306 - mozconfig* files shouldn't be hgignored. r=ted, a=npotb 2010-08-27 14:19:45 -07:00
Ehsan Akhgari
b54512ef4f Bug 560357 - .hgignore should ignore ctags, r=ted 2010-04-29 10:33:37 +02:00
Marco Bonardo
4f0bde9d4d Bug 537271 - Add .pyo files to .hgignore, r=ted 2010-01-08 13:57:46 +01:00
Jim Blandy
7f21163e78 No bug: Ignore idutils index files wherever they appear; ignore SpiderMonkey test logs. r=jorendorff 2009-10-16 11:48:16 -07:00
Ben Newman
baf70a3ff9 [HTML5] Remove unneeded parser/html/java/translator directory (bug 518224). r=hsivonen
--HG--
extra : rebase_source : 2d3d248bb554f66206568e55690fe1b0cd198515
2009-09-25 12:57:09 -07:00
Ben Newman
8f8e0b0b48 Bug 504447 - Make overzealous \.class$ pattern in .hgignore more precise. r=dbaron sr=jst 2009-07-17 13:50:20 -07:00
Ben Newman
9f9cf0e5b4 Bug 499141 - [HTML5] Check in the Java to C++ translator. r+sr=jst 2009-07-14 17:39:30 -07:00
Gavin Sharp
6f79c25b4d Bug 488864 - have hgignore ignore all (.)mozconfig* files; r=ted.mielczarek 2009-04-22 02:42:14 +02:00
Serge Gautherie
f089acf0c5 Bug 451273 - Add ".DS_Store" to .hgignore; (Bv1) "Root" the file; r=ted.mielczarek 2009-03-24 00:58:39 +01:00
Jim Blandy
f83d8c9ea3 Bug 97954: Allow SpiderMonkey to be built on its own, or as part of Mozilla.
Give SpiderMonkey its own configure script and top-level Makefile.
Adjust js/src/Makefile as appropriate for life as a stand-alone
makefile, instead of a 'make export; make libs'-style Mozilla tier
makefile.  Have the configure script accept '--with-nspr-cflags' and
'--with-nspr-libs' options for using an in-tree NSPR.  Also accept
'--with-system-nspr', '--with-nspr-prefix', and
'--with-nspr-exec-prefix' flags for using an installed NSPR.  Default
to --disable-jemalloc, assuming we don't have that part of the tree
available; have the top-level configure script pass --enable-jemalloc
as needed.

Since we no longer have an export phase to copy header files into
dist/include/js before we build the library, we need to be able to
find nanojit.h in the nanojit directory; fix references in
jsbuiltins.h and jstracer.cpp.

Give SpiderMonkey it its own copies of many of the files from ./config
and ./build.  These are all exact copies, except as follows:

. js/src/config/Makefile.in: js/src only has a subset of
  js/src/config, and thus a subset of the makefile targets.

. js/src/config/autoconf.mk.in: js/src/configure.in has its own make
  variables to set, not set by the top-level configure script, so it
  needs a custom automake.mk template.

. js/src/config/make-system-wrappers.pl: a copy from nsprpub/config,
  so that we can build without having an NSPR source tree handy.

Invoke js/src/configure from ./configure, passing the values computed
for NSPR_CFLAGS and NSPR_LIBS by the top-level configure script.

Treat js/src as a static directory of the js tier, and create a new
config/js (just a Makefile) to be the js tier's non-static directory.
Let js/src/configure generate SpiderMonkey's makefiles, not
./configure.

Generate a 'js-config' script, which clients can call to find the
CFLAGS and LIBS values necessary to compile and link against an
installed SpiderMonkey library.  Don't include the js-config script in
Macintosh packages.

Teach client.mk how to rebuild js/src/configure.

Tell Mercurial to ignore files generated by autoconf in js/src.

Further work:

. Right now, callers must define JS_THREADSAFE when #including jsapi.h.
  This is fixed in a subsequent patch.

. js/src/configure is a trimmed copy of ./configure.  It could be
  trimmed more.

--HG--
rename : build/autoconf/acoutput-fast.pl => js/src/build/autoconf/acoutput-fast.pl
rename : build/autoconf/altoptions.m4 => js/src/build/autoconf/altoptions.m4
rename : build/autoconf/config.guess => js/src/build/autoconf/config.guess
rename : build/autoconf/config.sub => js/src/build/autoconf/config.sub
rename : build/autoconf/glib.m4 => js/src/build/autoconf/glib.m4
rename : build/autoconf/install-sh => js/src/build/autoconf/install-sh
rename : build/autoconf/make-makefile => js/src/build/autoconf/make-makefile
rename : build/autoconf/match-dir.sh => js/src/build/autoconf/match-dir.sh
rename : build/autoconf/nspr.m4 => js/src/build/autoconf/nspr.m4
rename : build/autoconf/pkg.m4 => js/src/build/autoconf/pkg.m4
rename : build/autoconf/update-makefile.sh => js/src/build/autoconf/update-makefile.sh
rename : build/cygwin-wrapper => js/src/build/cygwin-wrapper
rename : build/hcc => js/src/build/hcc
rename : build/hcpp => js/src/build/hcpp
rename : build/unix/mddepend.pl => js/src/build/unix/mddepend.pl
rename : build/unix/uniq.pl => js/src/build/unix/uniq.pl
rename : config/Makefile.in => js/src/config/Makefile.in
rename : config/Moz/Milestone.pm => js/src/config/Moz/Milestone.pm
rename : config/autoconf.mk.in => js/src/config/autoconf.mk.in
rename : config/config.mk => js/src/config/config.mk
rename : config/elf-dynstr-gc.c => js/src/config/elf-dynstr-gc.c
rename : config/fastcwd.pl => js/src/config/fastcwd.pl
rename : config/gcc_hidden.h => js/src/config/gcc_hidden.h
rename : config/insure.mk => js/src/config/insure.mk
rename : nsprpub/config/make-system-wrappers.pl => js/src/config/make-system-wrappers.pl
rename : config/milestone.pl => js/src/config/milestone.pl
rename : config/milestone.txt => js/src/config/milestone.txt
rename : config/mkdepend/Makefile.in => js/src/config/mkdepend/Makefile.in
rename : config/mkdepend/cppsetup.c => js/src/config/mkdepend/cppsetup.c
rename : config/mkdepend/def.h => js/src/config/mkdepend/def.h
rename : config/mkdepend/ifparser.c => js/src/config/mkdepend/ifparser.c
rename : config/mkdepend/ifparser.h => js/src/config/mkdepend/ifparser.h
rename : config/mkdepend/imakemdep.h => js/src/config/mkdepend/imakemdep.h
rename : config/mkdepend/include.c => js/src/config/mkdepend/include.c
rename : config/mkdepend/main.c => js/src/config/mkdepend/main.c
rename : config/mkdepend/mkdepend.man => js/src/config/mkdepend/mkdepend.man
rename : config/mkdepend/parse.c => js/src/config/mkdepend/parse.c
rename : config/mkdepend/pr.c => js/src/config/mkdepend/pr.c
rename : config/nfspwd.pl => js/src/config/nfspwd.pl
rename : config/nsinstall.c => js/src/config/nsinstall.c
rename : config/nsinstall.py => js/src/config/nsinstall.py
rename : config/pathsub.c => js/src/config/pathsub.c
rename : config/pathsub.h => js/src/config/pathsub.h
rename : config/preprocessor.pl => js/src/config/preprocessor.pl
rename : config/revdepth-nt.pl => js/src/config/revdepth-nt.pl
rename : config/revdepth.pl => js/src/config/revdepth.pl
rename : config/rules.mk => js/src/config/rules.mk
rename : config/system-headers => js/src/config/system-headers
rename : config/version.mk => js/src/config/version.mk
rename : config/version_win.pl => js/src/config/version_win.pl
rename : configure.in => js/src/configure.in
2008-10-29 08:29:22 -07:00
Gavin Sharp
d9b7a7a51b Backed out changeset 7fdbccdc1e94 2008-08-26 19:40:21 -04:00
Gavin Sharp
6b325928cd Bug 452135: add nsBadCertHandler to packages-static, patch by Manish Singh <manish@flock.com>, r=me 2008-08-26 19:39:16 -04:00
Jesse Ruderman
908eef2884 Add ".DS_Store" to .hgignore (bug 451273). r=luser 2008-08-23 21:21:00 -07:00
Edward Lee
f0036b5555 Bug 448622 - Ignore obj/objdir without hyphen for hgignore. r=ted 2008-07-31 22:44:18 -07:00
Jim Blandy
d2f545575d Bug 439651 - ignore ID file (idutils) and TAGS (etags), r=bsmedberg 2008-07-09 13:03:31 -04:00
Benjamin Smedberg
03e5761766 Bug 417635 - import NSPR and NSS into hg, r=ted 2008-06-06 08:34:40 -04:00
Jeff Walden
2584ccd1f6 Add mozconfig, a lesser-known but ls-able alternative to .mozconfig, to the list of ignored files in .hgignore. r=dbaron 2008-05-15 20:39:35 -04:00
Daniel Holbert
8abea564a0 Bug 433798: add .nss.checkout empty marker-file to .hgignore. r=ted.mielczarek 2008-05-14 22:54:06 -07:00
jorendorff@mozilla.com
09c969aeaa Bug 389826 - .hgignore improvements again (r=bsmedberg) 2007-09-25 20:49:12 -04:00
jason
1190ee5cb5 Bug 387910 - mozilla-central .hgignore file is incomplete (r=luser) 2007-07-12 14:09:30 -04:00
hg@mozilla.com
1fe61f144d Set up .hgignore to ignore CVS files. 2007-03-22 10:29:00 -07:00