notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: devel/p5-IO-Tty/files/patch-Makefile.PL

Number of commits found: 4

Tuesday, 16 Apr 2024
12:43 Joe Marcus Clarke (marcus) search for other commits by this committer
devel/p5-IO-Tty: Remove a no-longer-needed patch

This fixes runtime where no tty functions could be used.

PR:		276535
Approved by:	perl@ (mat)
commit hash: c026b7502717e2c04d0ada7ad49443a48eaa8587 commit hash: c026b7502717e2c04d0ada7ad49443a48eaa8587 commit hash: c026b7502717e2c04d0ada7ad49443a48eaa8587 commit hash: c026b7502717e2c04d0ada7ad49443a48eaa8587 c026b75
Sunday, 18 Dec 2022
17:24 Dimitry Andric (dim) search for other commits by this committer
devel/p5-IO-Tty: fix build with clang 15

During an exp-run for llvm 15 (see bug 265425), it turned out that
devel/p5-IO-Tty failed to build with clang 15:

  Tty.xs:190:1: error: static declaration of 'strlcpy' follows non-static
declaration
  strlcpy(dst, src, siz)
  ^
  /usr/include/string.h:99:9: note: previous declaration is here
  size_t   strlcpy(char * __restrict, const char * __restrict, size_t);
           ^

This is because strlcpy() and various other functions are not correctly
detected at configure time:

  Looking for _getpty()...... not found.
  Looking for getpt()........ not found.
  Looking for grantpt()...... not found.
  Looking for openpty()...... not found.
  Looking for posix_openpt(). not found.
  Looking for ptsname()...... not found.
  Looking for ptsname_r().... not found.
  Looking for sigaction().... not found.
  Looking for strlcpy()...... not found.
  Looking for ttyname()...... not found.
  Looking for unlockpt()..... not found.
  Looking for libutil.h...... FOUND.
  Looking for pty.h.......... not found.
  Looking for sys/pty.h...... not found.
  Looking for sys/ptyio.h.... not found.
  Looking for sys/stropts.h.. not found.
  Looking for termio.h....... not found.
  Looking for termios.h...... FOUND.
  Looking for util.h......... not found.

Makefile.PL contains a C fragment that is used for this detection, but
it assigns the incorrect type to the value returned from the tested
function. This leads to compilation errors, even if the tested function
*is* available.

Fix this by using the correct type for the variable containing the
return value.

PR:		268232
Approved by:	portmgr (tcberner)
MFH:		2022Q4
commit hash: 0f85c4d7e4ceb4237ff6562a6b97c7051db01bf0 commit hash: 0f85c4d7e4ceb4237ff6562a6b97c7051db01bf0 commit hash: 0f85c4d7e4ceb4237ff6562a6b97c7051db01bf0 commit hash: 0f85c4d7e4ceb4237ff6562a6b97c7051db01bf0 0f85c4d
Wednesday, 25 Feb 2009
14:30 erwin search for other commits by this committer
Update to 1.08, which includes the fix committed in the previous
revision.

Submitted by:   ed
Original commit
Monday, 2 Feb 2009
19:24 erwin search for other commits by this committer
Use posix_openpt() instead of calling openpty() to allocate a PTY
and open the slave TTY, and calling unlockpt() afterwards.

PR:             128941
Submitted by:   ed
Reported by:    Gerhard Gonter <g.gonter@ieee.org>
Original commit

Number of commits found: 4