Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Fixed calc man page examples to move -f to the end of the line.
Thanks goes to Michael Somos <somos at grail dot cba dot csuohio
dot edu> for pointing this out.
Linux and gcc now compiled with -Wall -W -Wno-comment.
Fixed a post increment that was reported by R. Trinler <trinler at
web dot de> and fixed by Ernest Bowen <ernie at turing dot une dot
edu dot au>.
Fixed pi.cal to not depend on the buggy pre-2.11.9 post increment
behavior.
Added config("cygwin") to determine if calc was compiled under Cygwin.
The config("cygwin") is a read-only configuration value that is 1
when calc was compiled under Cygwin and 0 otherwise. Regression
tests 949 and 950 are skipped when config("cygwin") is true.
The Makefile variable HAVE_NO_IMPLICIT is empty by default so that
the Makefile will test if the compiler has a -Wno-implicit flag.
Added HAVE_UNUSED Makefile variable. If HAVE_UNUSED is empty,
then the Makefile will run the have_unused program to determine
if the unused attribute is supported. If HAVE_UNUSED is set to
-DHAVE_NO_UNUSED, then the unused attribute will not be used.
The Makefile builds have_unused.h which defines, if the unused
attribute is supported:
#define HAVE_UNUSED /* yes */
#define UNUSED __attribute__((unused)) /* yes */
or defines, if the unused is not supported (or if the Makefile
variable is HAVE_UNUSED= -DHAVE_NO_UNUSED):
#undef HAVE_UNUSED /* no */
#define UNUSED /* no */
Fixed numerous warnings about comparison between signed and unsigned
value warnings and unused parameter warnings in version.c, zrand.c,
string.c, shs1.c, shs.c, qtrans.c, qmath.c, qfunc.c, md5.c, matfunc.c,
hist.c, file.c, const.c, blkcpy.c, seed.c, opcodes.c, func.c, qio.c,
zrandom.c, custom/c_argv.c, custom/c_devnull.c, custom/c_help.c,
custom/c_sysinfo.c, addop.c and calc.c.
Fixed some typos in this file.
By default, compile with -O3 -g3. The Makefile comments on how some
distributions might need to use -O2 -g or -O -g.
|
|
|
|
fix build with gcc3. Note that the somewhat aging gmp autoconf test
had been removed wholesale.
Bump PKGREVISION.
|
|
with 8.4 will be updated to depend on x11/tk after Tk update.
|
|
|
|
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs.
Bump PKGREVISION.
|
|
|
|
|
|
|
|
files has .gcc as suffix instead of .cc.
|
|
|
|
|
|
|
|
|
|
|
|
database.
|
|
|
|
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
|
|
|
|
|
|
features:
* Rich set of number classes
* Elementary, logical, transcendental functions
* C++ as implementation language brings efficiency, type safety,
and algebraic syntax
* Memory efficiency
* Speed efficiency
* Interoperability
|
|
|
|
Trivial fix from FreeBSD through Michal Pasternak in PR pkg/23846.
|
|
* Fixed bug 135064. Changing the sign of a large number (when "Show
Thousands Separator" is on and this is not the C locale), no longer
corrupts the display.
My special thanks to Miloslav Trmac for fixing this problem in a
really elegant manner. This is an important change to the way that
numbers are displayed.
The fix involved resetting all the internal calculations in gcalctool
to be done in the C locale, and then localized (radix character and
thousands separator), just before the number is displayed.
I'd appreciate it if everybody could give this a good thrashing in as
many locales as possible to make sure that it's fully working.
* Fixed bug 135328. Added Shift-slash as a recognized alternate for the
divide operation (needed by the be-latin1 keyboard layout).
|
|
Changes since 4.3.44:
* Fixed bug 134540. gcalctool now correctly handles the digits
0123456789 which are shifted about the accented characters on a
French keyboard.
* Fixed bug 134484. Doing "3 x! x! x!" no longer causes gcalctool to
lock up.
|
|
* Generally bug-fixes and enhancement (it's hard to find out by reading NEWS and ChangeLog)
* Uses BUILDLINK3
|
|
|
|
Changes since 2.001804:
Too many to list here, see file "Changes".
|
|
build environment. This made the package build with xpkgwedge.
Bump revision to 2.
HOMEPAGE and MASTERSITES have changed.
|
|
|
|
|
|
|
|
|
|
testing it.
|
|
|
|
Overview of changes in gcalctool 4.3.44
* Fixed bug 133764.
- "Gradients" was still appearing when in Scientific mode (instead of
"Gradians".
- In the x^2 button, the 2 should not be italicized.
- In the x^2 and x^y buttons, the x should be italicized.
- The View Thousands Separator menu item should not remain active during
an error condition.
Overview of changes in gcalctool 4.3.43
* Fixed bug 133590. The About box now lists the documenters of gcalctool.
Overview of changes in gcalctool 4.3.42
* Fixed bug 132582. Adjusted the gcalctool titlebar to use a hyphen
(rather than square brackets) to show what mode the user is currently
using.
Overview of changes in gcalctool 4.3.41
* Fixed bug 132570. Adjusted UI to use spacing to delineate groups rather
than frames (per the HIG).
Overview of changes in gcalctool 4.3.40
* Fixed bug 131571. User defined constants are now read/written out (as
gconf resources) with no thousands separator and with a radix of ".".
Overview of changes in gcalctool 4.3.39
* Fixed bug 131594. The "Insert ASCII View..." menu item and the
"Insert" button no longer use the GTK_STOCK_CONVERT stock icon
(as per the HIG).
|
|
|
|
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.
|
|
automatically now.
|
|
|
|
on it.
|
|
|
|
|
|
|
|
|
|
|
|
compilers understand "-O" to optimize, and if we only care about gcc, then
wrap the block in an ifdef that is triggered only if we're using gcc.
|
|
configure tries to determine if -lm is needed by compiling
int main() {
(void)sin(0.0);
; return 0; }
and see if linking fails. But gcc3.3 optimizes that to just "return 0;"
|
|
overridden.
|